a110e1
@@ -20,6 +20,7 @@
import java.io.IOException;
 
 import org.apache.hadoop.hbase.TableNotDisabledException;
 import org.apache.hadoop.hbase.TableNotEnabledException;
+import org.apache.hadoop.hbase.TableNotFoundException;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -62,8 +63,9 @@
public class DisableTableViolationPolicyEnforcement extends DefaultViolationPoli
       if (LOG.isTraceEnabled()) {
         LOG.trace("Enable is complete for " + getTableName());
       }
-    } catch (TableNotDisabledException tnde) {
+    } catch (TableNotDisabledException | TableNotFoundException e) {
       // The state we wanted it to be in
+      // Or, in case table is not found, nothing to do
     }
   }
 
